home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / remote / pioneer.zip / PIONEER.TXT < prev   
Text File  |  1992-03-16  |  6KB  |  183 lines

  1. Due to popular request, the following is how I have configured Quickbbs to 
  2. work with multiple cd-roms using the Pioneer DRM600 player. I assume no 
  3. responsbility for damage to your system, if implemented and make no promises
  4. that it will work on your system. (However it should)
  5.  
  6. Setting up the Pioneer DRM-600 to work with Quickbbs consists of several
  7. steps. Make sure you do each one. It works here and has been for over one
  8. year using 6 CD-ROMS.
  9.  
  10. 1. Decide how you want your system setup. Do you want a seperate file area
  11. for each CD (the way I do it here) or do you want the cd-rom file areas as
  12. a continuation of your regular file areas (be advised you are limited to
  13. only 200 file areas this way and adding 6 cd-roms will undoubtedly go beyond 
  14. this limit) The following instruction assume one menu choice for each CD.
  15.  
  16. 2. Make one subdir on your hardrive for each cd-rom you will be using. I named
  17. mine as : 
  18. i:\crs4   for carrs 4
  19. i:\crs5   for carrs 5
  20. i:\crs6   for carrs 6
  21. i:\rom2   for rom2
  22. i:\hof    for Hall of Fame
  23. i:\ham    for Ham 
  24.  
  25. 3. Place the files.bbs listing for each cd-rom in the appropriate subdir.
  26. You can name these listings whatever you want but I tried to make them
  27. match the dir listings included with the cd's. (Note: Some CD's, especially
  28. the Carrs have multiple dirs in one dir listing. You will need to edit these
  29. and make seperate listings.) ie: DIR01 on Carrs 4.1 includes all files
  30. in the cd sub directories 001a, 001b and 001c. I edited the DIR01 file to
  31. be dir01a, dir01b and dir01c.
  32.  
  33. NOTE: during the next steps you need to make sure that no one accesses the
  34. BBS while you are building the necessary files.
  35.  
  36. 4. Go to your bbs directory and ren filecfg.dat to filecfg.nrm (this is your
  37. regular file areas. 
  38.  
  39. 5. Run Qconfig and go into the files area. ( it should be empty)
  40.  
  41. 6. Now enter the needed info into qconfig for whatever CD you are using as
  42. follows:
  43.  
  44. Name: (this is the name of the file area) ex: Terminal Programs
  45. File path: (path to the cd-rom subdir)   ex: w:\001a
  46. File list: (path to the file listings in step 3) ex: i:\crs4\dir01a
  47.  
  48. Fill in the security and flag info as you require (nothing special here)
  49.  
  50. 7. When you have finished entering all the info for one CD, exit qconfig with
  51. the save option. You now have a full filecfg.dat again for one CD. Rename
  52. the filecfg.dat to an appropriate name. I use:
  53. filecfg.cr4   (carrs 4)
  54. filecfg.cr5   (carrs 5)
  55. filecfg.cr6   (carrs 6)
  56. filecfg.rm2   (Rom 2)
  57. filecfg.hof   (Hall of Fame)
  58. filecfg.ham   (Ham files)
  59.  
  60. 8. You should now have 2 files, one called filecfg.nrm and another called
  61. filecfg.??? (where ??? is the extension you used).
  62.  
  63. 9. Repeat steps 5 thru 7 until you have built a filecfg.??? for each CD_ROM
  64. you will be using.
  65.  
  66. 10. Copy filecfg.nrm back to filecfg.dat (DON'T RENAME IT!! COPY IT!!!)
  67.  
  68. 11. At this point you should have one filecfg.??? for each CD, one for your
  69. normal files called filecfg.nrm and a filecfg.dat in your bbs subdirectory.
  70.  
  71. 12. The hard part is now done. Next, build a menu to access each of the
  72. file areas. (see the included file getrom.mnu) (NOTE: each entry is a 
  73. type 15 exit using a specific error level for each CD and calling file1.mnu
  74. as a file template)
  75.  
  76. 13. Build a menu for accessing each area. ( I use file templating, so I only
  77. have one of these. (see the included file file1.mnu)
  78.  
  79. 14. Go to your BBS batch file and add the following for each errorlevel
  80. you used in step 12. (Add the lines marked with <---) NOTE: Make sure you add
  81. the line that copies your filecfg.nrm back to filecfg.dat when the user logs
  82. off. 
  83.  
  84. e:
  85. cd\fd\qbbs
  86. quickbbs -b%1 -t%3 -e0
  87. if errorlevel 90 goto filenrm  <---
  88. if errorlevel 89 goto filecr4  <---
  89. if errorlevel 88 goto filehof  <---
  90. if errorlevel 87 goto filecr5  <---
  91. if errorlevel 86 goto fileham  <---
  92. if errorlevel 85 goto filerm2  <---
  93. if errorlevel 84 goto filecr6  <---
  94. if errorlevel 5 goto net&echo
  95. if errorlevel 4 goto echo_only
  96. if errorlevel 3 goto net_only
  97. copy filecfg.nrm filecfg.dat   <---  DON'T Forget this line
  98. cd\fd
  99. qb1.bat
  100.  
  101. :filenrm
  102. cd e:\fd\qbbs
  103. copy filecfg.nrm filecfg.dat
  104. quickbbs -R -E0
  105. goto after_quick
  106.  
  107. :filecr4
  108. cd e:\fd\qbbs
  109. copy filecfg.cr1 filecfg.dat
  110. quickbbs -R -E0
  111. goto after_quick
  112.  
  113. :filehof
  114. cd e:\fd\qbbs
  115. copy filecfg.hof filecfg.dat
  116. quickbbs -R -E0
  117. goto after_quick
  118.  
  119. :filecr5
  120. cd e:\fd\qbbs
  121. copy filecfg.cr2 filecfg.dat
  122. quickbbs -R -E0
  123. goto after_quick
  124.  
  125. :fileham
  126. cd e:\fd\qbbs
  127. copy filecfg.ham filecfg.dat
  128. quickbbs -R -E0
  129. goto after_quick
  130.  
  131. :filecr6
  132. cd e:\fd\qbbs
  133. copy filecfg.cr2 filecfg.dat
  134. quickbbs -R -E0
  135. goto after_quick
  136.  
  137. :filerm2
  138. cd e:\fd\qbbs
  139. copy filecfg.ham filecfg.dat
  140. quickbbs -R -E0
  141. goto after_quick
  142.  
  143. :after_quick
  144. if errorlevel 90 goto filenrm  <---
  145. if errorlevel 89 goto filecr4  <--- 
  146. if errorlevel 88 goto filehof  <---
  147. if errorlevel 87 goto filecr5  <---
  148. if errorlevel 86 goto fileham  <---
  149. if errorlevel 85 goto filerm2  <---
  150. if errorlevel 84 goto filecr6  <---
  151. if errorlevel 5 goto net&echo
  152. if errorlevel 4 goto echo_only
  153. if errorlevel 3 goto net_only
  154. copy filecfg.nrm filecfg.dat   <--- DON'T FORGET this line (it restores your
  155.                                     system to normal again)
  156. cd\fd
  157. qb1.bat
  158.   
  159.  
  160.  
  161. 15. You should now be ready to go with 6 CD-Roms and quickbbs. 
  162.  
  163. 16. A few Notes:
  164.  
  165. a. DON'T try to use a type 7 exit on the menus. You must totally exit
  166. the bbs and return to make it read the new configuration files.
  167.  
  168. b. If you are still having problems or have any recommendations feel free
  169. to netmail me at:   1:170/801 Fidonet or 150:225/801 QBBSnet
  170.  
  171. c. This works great here on a singleline system. If you are running multi-
  172. line and both lines have access to the CD it will NOT work.
  173.  
  174.  
  175.  
  176. Chester Mccarter, Sysop
  177. The Ham Radio Emporium
  178.  
  179. Fidonet: 1:170/801
  180. QBBSnet: 150:225/801
  181. RIME:    Emporium
  182. Smartnet: Emporium
  183. RFnet:   Emporium